home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 June / Amiga Games Extra 1996 #6.iso / devs / mountlist < prev    next >
Text File  |  1994-04-04  |  3KB  |  141 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39.  
  40. /* This is an example of a mount list entry for using the recoverable 
  41.    ram disk.  Depending on the amount of memory you wish to devote to
  42.    it, you may want to change the HighCyl value.
  43. */
  44.  
  45. RAD:       Device = ramdrive.device
  46.            Unit   = 0
  47.            Flags  = 0
  48.            Surfaces  = 2
  49.            BlocksPerTrack = 11
  50.            Reserved = 2
  51.            Interleave = 0
  52.            LowCyl = 0  ;  HighCyl = 21
  53.            Buffers = 5
  54.            BufMemType = 1
  55. #
  56.  
  57. /* Mount a 5.25" disk drive to be mounted as DF2: */
  58.  
  59. DF2:       Device = trackdisk.device
  60.            Unit   = 2
  61.            Flags  = 1
  62.            Surfaces  = 2
  63.            BlocksPerTrack = 11
  64.            Reserved = 2
  65.            Interleave = 0
  66.            LowCyl = 0  ;  HighCyl = 39
  67.            Buffers = 20
  68.            BufMemType = 3
  69. #
  70.  
  71. DH0:       Device = X500.device
  72.            FileSystem = l:FastFileSystem
  73.            Unit   = 1
  74.            Flags  = 0
  75.            Surfaces  = 2
  76.            BlocksPerTrack = 33
  77.            Reserved = 2
  78.            Interleave = 0
  79.            LowCyl = 2  ;  HighCyl =1333
  80.            Buffers = 30
  81.            GlobVec = -1
  82.            BufMemType = 1
  83.            Maxtransfer = 32
  84. #
  85.  
  86.  
  87. DH1:       Device = X500.device
  88.            FileSystem = l:FastFileSystem
  89.            Unit   = 2
  90.            Flags  = 0
  91.            Surfaces  = 2
  92.            BlocksPerTrack = 33
  93.            Reserved = 2
  94.            Interleave = 0
  95.            LowCyl = 0  ;  HighCyl =1333
  96.            Buffers = 30
  97.            GlobVec = -1
  98.            BufMemType = 1
  99.            Maxtransfer = 32
  100. #
  101.  
  102. DH2:       Device = X500.device
  103.            FileSystem = l:FastFileSystem
  104.            Unit   = 1
  105.            Flags  = 0
  106.            Surfaces  = 8
  107.            BlocksPerTrack = 34
  108.            Reserved = 2
  109.            Interleave = 0
  110.            LowCyl = 668  ;  HighCyl = 1000
  111.            Buffers = 30
  112.            GlobVec = -1
  113.            BufMemType = 1
  114. #
  115.  
  116. DH3:       Device = X500.device
  117.            FileSystem = l:FastFileSystem
  118.            Unit   = 1
  119.            Flags  = 0
  120.            Surfaces  = 8
  121.            BlocksPerTrack = 34
  122.            Reserved = 2
  123.            Interleave = 0
  124.            LowCyl = 1001  ;  HighCyl = 1333
  125.            Buffers = 30
  126.            GlobVec = -1
  127.            BufMemType = 1
  128. #
  129.  
  130. DF1:       Device = trackdisk.device
  131.            Unit   = 2
  132.            Flags  = 1
  133.            Surfaces  = 2
  134.            BlocksPerTrack = 11
  135.            Reserved = 2
  136.            Interleave = 0
  137.            LowCyl = 0  ;  HighCyl = 79
  138.            Buffers = 20
  139.            BufMemType = 3  */
  140. #
  141.